home *** CD-ROM | disk | FTP | other *** search
/ Internet.Works 41 / Issue 41.iso / pc / PCSoftware / Netscape 6 Official Release / nim.xpi / bin / chrome / aim.jar / content / aim / contextMenu.xul < prev    next >
Encoding:
Extensible Markup Language  |  2000-09-07  |  2.3 KB  |  62 lines

  1. <?xml version="1.0"?>
  2.  
  3. <!DOCTYPE window SYSTEM "chrome://aim/locale/contextMenu.dtd" >
  4.  
  5. <overlay id="IMcontextMenu"
  6.          xmlns:html="http://www.w3.org/1999/xhtml"
  7.      xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  8.          xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
  9.  
  10. <script language="javascript" src="chrome://aim/content/contextMenu.js" />
  11. <script language="javascript" src="chrome://aim/content/App.js" />
  12.  
  13.  
  14. <popupset id="imContextMenuSet">
  15.     <!-- This is the context menu for the content-area of the IM
  16.          Buddy List window.
  17.     -->
  18.     <popup id="context"
  19.         oncreate="contextMenu = new nsContextMenu( this );"
  20.         ondestroy="contextMenu.onDestroy(); contextMenu = null;">
  21.  
  22.         <!-- Online Tab ==================================== -->
  23.         <menuitem id="context-sendIM"
  24.                   value="&sendIMCmd.label;"
  25.                   accesskey=""
  26.                   oncommand="cmdNewIM();"/>
  27.         <menuitem id="context-sendChat"
  28.                   value="&sendChatCmd.label;"
  29.                   accesskey=""
  30.                   oncommand="contextMenu.cmdContextSendChat();"/>
  31.  
  32.         <!-- Sidebar panel only -->
  33.         <!-- <menuitem id="context-EditList"
  34.                   value="&editListCmd.label;"
  35.                   accesskey=""
  36.                   oncommand="contextMenu.cmdContextEditList();"/> -->
  37.  
  38.         <!-- <menuseparator id="context-sep-open"/> -->
  39.  
  40.         <!-- List Setup Tab ============================== -->
  41.         <menuitem id="context-addBuddy"
  42.                   value="&addBuddyCmd.label;"
  43.                   accesskey=""
  44.                   oncommand="contextMenu.cmdContextAddBuddy();"/>
  45.         <menuitem id="context-addGroup"
  46.                   value="&addGroupCmd.label;"
  47.                   accesskey=""
  48.                   oncommand="contextMenu.cmdContextAddGroup();"/>
  49.         <menuitem id="context-delete"
  50.                   value="&deleteCmd.label;"
  51.                   accesskey=""
  52.                   oncommand="contextMenu.cmdContextDelete();"/>
  53.         <!--<menuseparator/>   
  54.         <menuitem id="context-editAB"
  55.                   value="&editABCmd.label;"
  56.                   accesskey=""
  57.                   oncommand="contextMenu.cmdContextEditAB();"/>   Prass - fix for 853, needs testing  -->
  58.     </popup>
  59. </popupset>
  60.  
  61. </overlay>
  62.